:root {
    --charcoal: #1C1C1E;
    --gold: #D4AF37;
    --teal: #1DAAA4;
    --cream: #F9F8F4;
    --blush: #F6D4CB;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal);
    line-height: 1.6;
    background-color: var(--cream);
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: normal;
}
.script-font {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    text-transform: none;
}
/* Header/Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(28, 28, 30, 0.95);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}
.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: white;
    text-decoration: none;
}
.logo span {
    color: var(--gold);
}
nav ul {
    display: flex;
    list-style: none;
}
nav ul li {
    margin-left: 2rem;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: var(--gold);
}
.nav-btn {
    background-color: var(--gold);
    color: var(--charcoal);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}
.nav-btn:hover {
    background-color: var(--teal);
    color: white;
}
.hamburger {
    display: none;
    cursor: pointer;
    color: white;
    font-size: 1.5rem;
    position: absolute;
    top: 1.2rem;
    right: 2rem;
    z-index: 1100;
}
/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(28, 28, 30, 0.7), rgba(28, 28, 30, 0.5)), 
                url('../other-img/background_photo.webp') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 2rem;
}
.hero h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    line-height: 1;
}
.hero h1 span {
    color: var(--gold);
}
.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 2rem;
}
.hero-btns {
    display: flex;
    gap: 1rem;
}
.btn {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-primary {
    background-color: var(--gold);
    color: var(--charcoal);
}
.btn-primary:hover {
    background-color: var(--teal);
    color: white;
}
.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}
.btn-secondary:hover {
    background-color: white;
    color: var(--charcoal);
}
.scroll-down {
    position: absolute;
    bottom: 2rem;
    font-size: 2rem;
    color: white;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}
/* Gallery Section */
.section {
    padding: 5rem 2rem;
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--charcoal);
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    aspect-ratio: 4/3;
    transition: transform 0.3s;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1.5rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.category-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(0,0,0,0.7);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
}
.wedding-tag {
    background-color: var(--gold);
    color: var(--charcoal);
}
.concert-tag {
    background-color: var(--teal);
    color: white;
}
.sports-tag {
    background-color: #4CAF50;
    color: white;
}
.portrait-tag {
    background-color: var(--blush);
    color: var(--charcoal);
}
.family-tag {
    background-color: #FF9800; /* Orange */
    color: white;
}
.camps-tag {
    background-color: #3F51B5; /* Indigo/Blue-Purple */
    color: white;
}
.graduation-tag {
    background-color: #9C27B0; /* Purple */
    color: white;
}
/* Packages Section */
.packages {
    background-color: var(--charcoal);
    color: var(--cream);
}
.packages .section-title {
    color: var(--cream);
}
.package-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}
.category-btn {
    background: none;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
}
.category-btn:hover, .category-btn.active {
    background-color: var(--gold);
    color: var(--charcoal);
}
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.package-card {
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 2rem;
    transition: opacity 0.18s cubic-bezier(.4,0,.2,1), transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s, visibility 0.18s;
    position: relative;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
}
.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.package-card.wedding::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--gold);
}
.package-card.concert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--teal);
}
.package-card.sports::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #4CAF50;
}
.package-card.portrait::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--blush);
}
.package-card.family::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #FF9800; /* Orange */
}
.package-card.camps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #3F51B5; /* Blue-purple */
}
.package-card.graduation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #9C27B0; /* Purple */
}
.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}
.package-card.concert h3 {
    color: var(--teal);
}
.package-card.sports h3 {
    color: #4CAF50;
}
.package-card.portrait h3 {
    color: var(--blush);
}
.package-card.family h3 {
    color: #FF9800;
}
.package-card.camps h3 {
    color: #3F51B5;
}
.package-card.graduation h3 {
    color: #9C27B0;
}
.package-card.family .package-btn {
    background-color: #FF9800;
    color: white;
}
.package-card.camps .package-btn {
    background-color: #3F51B5;
    color: white;
}
.package-card.graduation .package-btn {
    background-color: #9C27B0;
    color: white;
}
        
.package-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.package-features {
    list-style: none;
    margin-bottom: 1.5rem;
}
.package-features li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}
.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
}
.package-card.concert .package-features li::before {
    color: var(--teal);
}
.package-card.sports .package-features li::before {
    color: #4CAF50;
}
.package-card.portrait .package-features li::before {
    color: var(--blush);
}
.package-card.family .package-features li::before {
    color: #FF9800;
}
.package-card.camps .package-features li::before {
    color: #3F51B5;
}
.package-card.graduation .package-features li::before {
    color: #9C27B0;
}
        
.package-btn {
    display: inline-block;
    background-color: var(--gold);
    color: var(--charcoal);
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}
.package-card.concert .package-btn {
    background-color: var(--teal);
    color: white;
}
.package-card.sports .package-btn {
    background-color: #4CAF50;
    color: white;
}
.package-card.portrait .package-btn {
    background-color: var(--blush);
    color: var(--charcoal);
}
.package-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}
/* Why Choose Section */
.why-choose {
    background-color: var(--cream);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.feature-card:hover {
    transform: translateY(-10px);
}
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}
.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.testimonial .quote {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}
.testimonial-author {
    font-weight: 600;
    color: var(--gold);
}
/* Contact Section */
.contact {
    background-color: var(--charcoal);
    color: var(--cream);
}
.contact .section-title {
    color: var(--cream);
}
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 4px;
    background-color: rgba(255,255,255,0.9);
    font-family: 'Montserrat', sans-serif;
}
.form-group textarea {
    min-height: 150px;
    resize: vertical;
}
.submit-btn {
    background-color: var(--gold);
    color: var(--charcoal);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}
.submit-btn:hover {
    background-color: var(--cream);
    transform: translateY(-3px);
}
/* Footer */
footer {
    background-color: var(--charcoal);
    color: white;
    padding: 3rem 2rem 1rem;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
    display: inline-block;
}
.footer-logo span {
    color: var(--gold);
}
.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--gold);
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--gold);
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}
.social-links a:hover {
    color: var(--gold);
}
.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
/* Responsive */
/* Removed duplicate/conflicting hero section media queries for clarity and maintainability. */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    .hero .quote {
        font-size: 1.2rem;
    }
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    .package-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .section {
        padding: 3rem 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    .footer-logo, .footer-links, .social-links {
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
    .footer-links ul {
        align-items: center !important;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        position: absolute;
        top: 1.2rem;
        right: 2rem;
        z-index: 1100;
    }
    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--charcoal);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        border-bottom-left-radius: 0.5rem;
        border-bottom-right-radius: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(.4,0,.2,1);
        z-index: 999;
    }
    nav ul.active {
        max-height: 400px;
        /* enough for 6-7 links */
        transition: max-height 0.3s cubic-bezier(.4,0,.2,1);
    }
    nav ul li {
        margin: 0;
        width: 100%;
    }
    nav ul li a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100vw;
        min-width: 0;
        min-height: 56px;
        padding: 1rem 0;
        font-size: 1.2rem;
        background: none;
        border: none;
        color: white;
        text-align: center;
        text-decoration: none;
        font-weight: 600;
        transition: background 0.2s, color 0.2s;
        cursor: pointer;
    }
    nav ul li a:hover, nav ul li a:focus {
        background: var(--gold);
        color: var(--charcoal);
    }
    nav ul li .nav-btn {
        background: var(--teal);
        color: white;
        border-radius: 0;
        font-size: 1.2rem;
        width: 100vw;
        min-height: 56px;
        padding: 1rem 0;
        margin: 0;
    }
    nav ul li .nav-btn:hover, nav ul li .nav-btn:focus {
        background: var(--gold);
        color: var(--charcoal);
    }
    .hero h1 {
        font-size: 3.5rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    .about-container {
        grid-template-columns: 1fr;
    }
    .team-members {
        grid-template-columns: 1fr;
        margin-top: 3rem;
    }
    .booking-btns {
        flex-direction: column;
        align-items: center;
    }
}
/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in {
    animation: fadeIn 1s ease forwards;
}
.delay-1 {
    animation-delay: 0.2s;
}
.delay-2 {
    animation-delay: 0.4s;
}
.delay-3 {
    animation-delay: 0.6s;
}
#chat-toggle-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: var(--charcoal);
    color: var(--charcoal);
    border: none;
    border-radius: 50px;
    width: 130px;
    height: 60px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition:
        bottom 0.4s cubic-bezier(.4,0,.2,1),
        right 0.4s cubic-bezier(.4,0,.2,1),
        opacity 0.3s,
        transform 0.4s cubic-bezier(.4,0,.2,1),
        background 0.3s,
        color 0.3s,
        box-shadow 0.3s,
        width 0.4s cubic-bezier(.4,0,.2,1),
        border-radius 0.4s cubic-bezier(.4,0,.2,1);
}

#chat-toggle-btn .text {
    display: inline;
}

#aj247-chat-container.active #chat-toggle-btn {
    background: transparent;
    color: var(--gold);
    box-shadow: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    padding: 0;
}

#aj247-chat-container.active #chat-toggle-btn .text {
    display: none;
}

#chat-toggle-btn .text {
    font-weight: bold;
    color: white;
}

#aj247-chat-container.active #chat-toggle-btn .text {
    display: none; /* hidden inside chat */
}

#chat-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100000 !important; /* force it on top */
    /* ...rest of your styles */
}


/* When chat is open, move toggle button above send button */
#aj247-chat-container.active ~ #chat-toggle-btn {
    position: absolute;
    right: 20px;
    bottom: 90px; /* above send button */
    z-index: 10000;
}
#aj247-chat-container {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 9998;
    pointer-events: none;
}
#aj247-chat-widget {
    width: 340px;
    height: 400px;
    max-height: 90vh;
    background: #1a1a1a;
    color: white;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.6);
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.4s ease, width 0.4s ease, height 0.4s ease;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
}
#aj247-chat-container.active #aj247-chat-widget {
    transform: scale(1);
    width: 400px;
    height: 560px;
    border-radius: 20px;
    bottom: 90px;
    right: 20px;
    position: fixed;
}
#chat-header {
    background: #e6007e;
    padding: 12px 16px;
    text-align: left;
    font-weight: bold;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: white;
}
#chat-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}
#chat-close-btn:hover {
    color: #ffc;
}
#chat-log {
    flex: 1 1 auto;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.5;
    padding: 8px 10px;
    min-height: 0;
    max-height: unset;
}
.chat-sender-user {
    color: #2196f3;
    font-weight: bold;
}
.chat-sender-ai {
    color: var(--gold);
    font-weight: bold;
}
#chat-input-bar {
    width: 100%;
    background: #111;
    border-top: 1px solid #333;
    padding: 0 8px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
#chat-input {
    flex: 1 1 auto;
    border: none;
    padding: 10px 12px;
    outline: none;
    font-size: 14px;
    background-color: #111;
    color: white;
    border-radius: 8px;
    margin: 6px 0;
}
#chat-send-btn {
    background: var(--gold);
    color: var(--charcoal);
    border: none;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 1rem;
    margin: 6px 0 6px 6px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
#chat-send-btn:hover, #chat-send-btn:focus {
    background: var(--teal);
    color: white;
}
/* Wallhack-style clean chat bubbles */
.chat-msg-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
    max-width: 100%;
    }   

.chat-msg-wrapper.left .chat-msg-meta {
  justify-content: flex-start;
  text-align: right;
  gap: 8px;
}

.chat-msg-wrapper.right .chat-msg-meta {
  justify-content: flex-end;
  text-align: right;
  gap: 8px;
}


.chat-msg-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #888;
  margin-bottom: 2px;
  user-select: none;
  font-family: 'Montserrat', sans-serif;
  width: 100%;
  padding: 0 6px;
  gap: 4px;
}


@keyframes popIn {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}
.chat-bubble {
    padding: 10px 14px;
    border-radius: 16px;
    max-width: 260px;
    word-wrap: break-word;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    position: relative;
    animation: popIn 0.2s ease;
}
.user-bubble {
    background-color: var(--charcoal);
    color: white;
    border-bottom-right-radius: 0;
}
.ai-bubble {
    background-color: #eee;
    color: #1C1C1E;
    border-bottom-left-radius: 0;
}
.chat-content {
    white-space: pre-wrap;
    font-size: 16px;
}
.chat-sender {
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 4px;
    color: #888;
}
.chat-timestamp {
    font-size: 0.65rem;
    color: #999;
    margin-top: 6px;
    text-align: right;
}
/* Bubble tails for pro-style chat bubbles */
.user-bubble::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -8px;
    width: 12px;
    height: 12px;
    background-color: var(--charcoal);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}
.ai-bubble::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -8px;
    width: 12px;
    height: 12px;
    background-color: #eee;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
@media (max-width: 600px) {
    .chat-bubble {
        max-width: 85%;
        font-size: 13px;
    }
}
#aj247-chat-container {
    transform: scale(1.1);
    transform-origin: bottom right; /* keeps the chat anchored nicely */
}

.chat-msg-sender {
    font-weight: 600;
    color: #555;
}

.chat-msg-sender {  
    font-size: 0.9rem; /* or bump to 1rem */
}
.chat-msg-timestamp {
    font-size: 0.8rem; /* or bump to 1rem */
}


.chat-msg-timestamp {
    font-style: italic;
    color: #aaa;
}
@media (max-width: 768px) {
    #aj247-chat-container.active #aj247-chat-widget {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
        bottom: 0;
        right: 0;
        position: fixed;
    }
    #chat-header {
        font-size: 1rem;
        padding: 12px 16px;
    }
    #chat-close-btn {
        font-size: 1.3rem;
    }
}
@media (max-width: 600px) {
    #aj247-chat-container.active #aj247-chat-widget {
        width: 100vw;
        height: 100vh;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }
    #chat-header {
        font-size: 1rem;
        padding: 12px 16px;
    }
    #chat-close-btn {
        font-size: 1.3rem;
    }
    #chat-input-bar {
        padding: 0 8px;
    }
    #chat-log {
        padding: 10px;
    }
    }
    @media (max-width: 600px) {
        #aj247-chat-container {
            transform: none !important;
        }
    }

.chat-msg-wrapper.right {
    align-items: flex-end;
    align-self: flex-end;
    margin-left: auto;
}
.chat-msg-wrapper.left {
    align-items: flex-start;
    align-self: flex-start;
    margin-right: auto;
}

/* Chat scroll bar - WebKit (Chrome, Edge) */
#chat-log::-webkit-scrollbar {
    width: 8px;
}

#chat-log::-webkit-scrollbar-track {
    background: #1a1a1a; /* same as chat background */
}

#chat-log::-webkit-scrollbar-thumb {
    background-color: var(--gold); /* your theme gold */
    border-radius: 8px;
    border: 2px solid #1a1a1a;
}

#chat-log::-webkit-scrollbar-thumb:hover {
    background-color: var(--teal); /* hover color */
}

/* Chat scroll bar - Firefox */
#chat-log {
    scrollbar-width: thin;
    scrollbar-color: var(--gold) #1a1a1a;
}

/* GLOBAL SCROLLBAR STYLING */

/* WebKit-based browsers (Chrome, Edge, Safari) */
body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: var(--cream); /* background color of the site */
}

body::-webkit-scrollbar-thumb {
    background-color: var(--gold); /* matches your theme */
    border-radius: 10px;
    border: 2px solid var(--cream);
}

body::-webkit-scrollbar-thumb:hover {
    background-color: var(--teal);
}

/* Firefox */
body {
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--cream);
}

/* Works on most Chromium browsers (Chrome, Edge, Brave, Opera) */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 10px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: var(--cream); /* Match your site background */
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background-color: var(--gold);  /* Theme color */
    border-radius: 10px;
    border: 2px solid var(--cream);
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
    background-color: var(--teal);
}

/* Firefox support */
html, body {
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--cream);
}

/* Add this to your CSS */
body.lock-scroll {
  overflow: hidden;
  position: fixed; /* optional but helps on mobile */
  width: 100%;    /* prevents layout shift */
}

.chat-note {
  font-size: 0.85rem;
  color: var(--charcoal);
  background: var(--cream);
  padding: 0.5rem;
  border-radius: 8px;
  margin: 0.5rem;
  text-align: center;
}

#chat-toggle-btn {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        width 0.4s ease;
}

#chat-toggle-btn .chat-label {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
    transition: max-width 0.4s ease, margin-left 0.3s ease;
    margin-left: 0;
}

#chat-toggle-btn.show {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

#chat-toggle-btn.expand .chat-label {
    max-width: 100px; /* enough space to show "Chat" */
    margin-left: 0.5rem;
}

#chat-toggle-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--charcoal);  /* ← charcoal background */
  color: white;                       /* ← white text */
  font-weight: bold;                  /* ← bold letters */
  border-radius: 50%;
  height: 60px;
  width: 60px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  overflow: hidden;
  transition:
    width 0.4s ease,
    border-radius 0.4s ease,
    opacity 0.4s ease,
    transform 0.4s ease;
}

#chat-toggle-btn .chat-label {
  margin-left: 0.5rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Button becomes visible */
#chat-toggle-btn.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* Button expands */
#chat-toggle-btn.expand {
  width: 140px;
  border-radius: 30px;
  justify-content: flex-start;
  padding-left: 1rem;
}

/* Label fades in only when expanded */
#chat-toggle-btn.expand .chat-label {
  opacity: 1;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.3s;
}

.delay-2 {
  transition-delay: 0.6s;
}

/* Hide "Chat" label when inside chat */
#aj247-chat-container.active #chat-toggle-btn .chat-label {
  display: none;
}

#aj247-chat-container.active #chat-toggle-btn {
  width: 60px;
  border-radius: 50%;
  justify-content: center;
  padding-left: 0;
}

#chat-toggle-btn .chat-label {
  margin-left: 0.2rem;
}


#chat-toggle-btn {
  font-variant-ligatures: none;
  letter-spacing: -0.5px; /* optional: can tighten all characters slightly */
}

#chat-toggle-btn .chat-label {
  margin-left: 0.2rem;
  display: inline-block;
  vertical-align: middle;
}

#chat-toggle-btn .chat-label {
  margin-left: 0.15rem;
  display: inline-block;
  vertical-align: middle;
}

#chat-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  gap: 0rem; /* ← controls space between emoji + label */
  font-size: 1.5rem;
  background-color: var(--charcoal);
  color: var(--cream);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#chat-toggle-btn .emoji {
  display: inline-block;
}

#chat-toggle-btn .chat-label {
  display: inline-block;
}

body[style*="overflow: hidden"] {
  overscroll-behavior: none;
}

body.lock-scroll {
  overflow: hidden;
}

body.lock-scroll {
  overflow: hidden;
  height: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;  /* <--- Make sure this is here */
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;      /* <--- Important for text centering */
    line-height: 1.2;        /* Optional, to fix vertical alignment */
}

.contact-section {
  max-width: 600px;
  margin: 120px auto 60px;
  padding: 2rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}
.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
  text-align: center;
}
.contact-section p {
  text-align: center;
  margin-bottom: 2rem;
  color: #555;
}
form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--charcoal);
}
form input, form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
form button {
  width: 100%;
  background-color: var(--gold);
  color: var(--charcoal);
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
form button:hover {
  background-color: var(--teal);
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        position: absolute;
        top: 1.2rem;
        right: 2rem;
        z-index: 1100;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--charcoal);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        border-bottom-left-radius: 0.5rem;
        border-bottom-right-radius: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(.4,0,.2,1);
        z-index: 999;
        display: flex;
    }
    .nav-links.active {
        max-height: 400px;
        transition: max-height 0.3s cubic-bezier(.4,0,.2,1);
    }
    .nav-links li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    .nav-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100vw;
        min-width: 0;
        min-height: 56px;
        padding: 1rem 0;
        font-size: 1.2rem;
        background: none;
        border: none;
        color: white;
        text-align: center;
        text-decoration: none;
        font-weight: 600;
        transition: background 0.2s, color 0.2s;
        cursor: pointer;
    }
    .nav-links a:hover, .nav-links a:focus {
        background: var(--gold);
        color: var(--charcoal);
    }
    .nav-links .cta-button {
        background: var(--teal);
        color: white;
        border-radius: 0;
        font-size: 1.2rem;
        width: 100vw;
        min-height: 56px;
        padding: 1rem 0;
        margin: 0;
    }
    .nav-links .cta-button:hover, .nav-links .cta-button:focus {
        background: var(--gold);
        color: var(--charcoal);
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    .section {
        padding: 3rem 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .package-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: left; /* changed from center */
    }
    .footer-logo, .footer-links, .social-links {
        align-items: flex-start;
        justify-content: flex-start;
    }
    .footer-links ul {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}
@media (max-width: 480px) {
    .section {
        padding: 3rem 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
}

.hero h1, .hero p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
    max-width: 900px;
    margin-bottom: 1rem;
}

.hero p {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    max-width: 700px;
    margin-bottom: 2rem;
    font-weight: 400;
}
